
' Theremino Automation demo program

' Demonstrating NESTED COMPARATIONS

v1 = Slot(1)
v2 = Slot(2)

If v1 > v2
	Print "V1 is greater than V2"
Else
	If v1 < v2
		Print "V1 is less than V2"
	Else
		Print "V1 is equal to V2"
	EndIf
EndIf

'EXEC Slot 1 = 100 : Slot 2 = 100
